🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / app / src / test / java / com / geeksville / mesh / concurrent / SequentialJobTest.kt
Displaying Raw • Download
app/src/test/java/com/geeksville/mesh/concurrent/SequentialJobTest.kt features/lockdown (1ea87dbb) Text, 2.24 KB
T8b949e/*
* Copyright (c) 2025 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787com.geeksville.mesh.concurrent
Tff7b72import T7ee787kotlinx.coroutines.ExperimentalCoroutinesApi
Tff7b72import T7ee787kotlinx.coroutines.delay
Tff7b72import T7ee787kotlinx.coroutines.test.advanceTimeBy
Tff7b72import T7ee787kotlinx.coroutines.test.runTest
Tff7b72import T7ee787org.junit.Assert.assertTrue
Tff7b72import T7ee787org.junit.Test
Tf0883e@ExperimentalCoroutinesApi
Tff7b72class T56d364SequentialJobTest Tb4b4b4{
Tff7b72private Tff7b72val Te6edf3sequentialJob Tff7b72= Te6edf3SequentialJobTb4b4b4(Tb4b4b4)
Tf0883e@Test
Tff7b72fun Td2a8ff`launch cancels previous job`Tb4b4b4(Tb4b4b4) Tff7b72= Te6edf3runTest Tb4b4b4{
Tff7b72var Te6edf3job1Active Tff7b72= Tff7b72false
Tff7b72var Te6edf3job1Cancelled Tff7b72= Tff7b72false
T8b949e// Launch first job
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
Tff7b72try Tb4b4b4{
Te6edf3job1Active Tff7b72= Tff7b72true
Te6edf3delayTb4b4b4(T79c0ff1T79c0ff0T79c0ff0T79c0ff0Tb4b4b4)
Tb4b4b4} Tff7b72finally Tb4b4b4{
Te6edf3job1Cancelled Tff7b72= Tff7b72true
Tb4b4b4}
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Ta5d6ff"Ta5d6ffJob 1 should be activeTa5d6ff"Tb4b4b4, Te6edf3job1ActiveTb4b4b4)
T8b949e// Launch second job
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
T8b949e// Do nothing
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Ta5d6ff"Ta5d6ffJob 1 should be cancelledTa5d6ff"Tb4b4b4, Te6edf3job1CancelledTb4b4b4)
Tb4b4b4}
Tf0883e@Test
Tff7b72fun Td2a8ff`cancel stops the job`Tb4b4b4(Tb4b4b4) Tff7b72= Te6edf3runTest Tb4b4b4{
Tff7b72var Te6edf3jobActive Tff7b72= Tff7b72false
Tff7b72var Te6edf3jobCancelled Tff7b72= Tff7b72false
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
Tff7b72try Tb4b4b4{
Te6edf3jobActive Tff7b72= Tff7b72true
Te6edf3delayTb4b4b4(T79c0ff1T79c0ff0T79c0ff0T79c0ff0Tb4b4b4)
Tb4b4b4} Tff7b72finally Tb4b4b4{
Te6edf3jobCancelled Tff7b72= Tff7b72true
Tb4b4b4}
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Ta5d6ff"Ta5d6ffJob should be activeTa5d6ff"Tb4b4b4, Te6edf3jobActiveTb4b4b4)
Te6edf3sequentialJobTb4b4b4.Te6edf3cancelTb4b4b4(Tb4b4b4)
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Ta5d6ff"Ta5d6ffJob should be cancelledTa5d6ff"Tb4b4b4, Te6edf3jobCancelledTb4b4b4)
Tb4b4b4}
Tb4b4b4}
Served by rngit 1.5.0 - Generated in 0.1s